POV-Ray : Newsgroups : povray.binaries.images : Aliasing (77 KB GIF) : Aliasing (77 KB GIF) Server Time
2 Oct 2024 06:25:00 EDT (-0400)
  Aliasing (77 KB GIF)  
From: Tor Olav Kristensen
Date: 2 Jun 2000 09:31:18
Message: <3937B70C.3FAA29D0@hotmail.com>
I think this an interesting effect.

Almost fractal isn't it ?

See code below.


Tor Olav
--
mailto:tor### [at] hotmailcom
http://www.crosswinds.net/~tok/tokrays.html


// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7
// Try rendering at different resolutions
// with no AA (Anti Aliasing)

#version 3.1;

light_source { <0, 0, 0>, 1.5 }

sphere {
  <0, 0, 0>, 600 // Changing this radius gives different patterns
  pigment {
    gradient y
    color_map {
      [ 0.0 rgb <1, 0, 0> ]
      [ 0.5 rgb <0, 1, 0> ]
      [ 1.0 rgb <0, 0, 1> ]
    }
  }
}

camera {
  location <1, 0, 0>
  look_at <0, 0, 0>
  angle 168 // Changing this angle also alters the patterns
}

// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7


Post a reply to this message


Attachments:
Download 'aliasing.gif' (78 KB)

Preview of image 'aliasing.gif'
aliasing.gif


 

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.